# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'

source 'https://cdn.cocoapods.org/'

post_install do |installer|
      installer.pods_project.targets.each do |target|
          target.build_configurations.each do |config|
          xcconfig_path = config.base_configuration_reference.real_path
          xcconfig = File.read(xcconfig_path)
          xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
          File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
          end
      end
  end

target 'CQAdDemo' do
  use_frameworks!


  #快手 如果不需要，可以不添加
  pod 'KSAdSDK', '3.3.72', :inhibit_warnings => false
  
  #广点通 如果不需要，可以不添加
  pod 'GDTMobSDK', '4.15.22', :inhibit_warnings => false
  
  #穿山甲 如果不需要，可以不添加
  pod 'Ads-CN', '6.6.1.3', :subspecs => ['BUAdSDK', 'CSJMediation']
  
  #百度广告 如果不需要，可以不添加
  pod 'BaiduMobAdSDK', '5.371', :inhibit_warnings => false
  
  #京东广告 如果不需要，可以不添加
  pod 'JADYun', '2.6.4', :inhibit_warnings => false
    
  pod 'TanxSDK','3.6.3'


end
